Bump version to 1.14.0 in preparation for 1.14.0-RC1
[betaflight.git] / docs / development / Building in Fedora.md
blobc7b8e712ff4fd2293ac23ca4bf7bd5b38de06d94
1 # Building in Fedora
3 Assuming you already have wget and git available, you should be able to build Cleanflight on a fresh install of Fedora with the following commands (tested on F18, F20 and Ubuntu 14.04):
5 ```
6 wget http://distribute.atmel.no/tools/opensource/Atmel-ARM-GNU-Toolchain/4.8.4/arm-gnu-toolchain-4.8.4.371-linux.any.x86_64.tar.gz
8 tar xf arm-gnu-toolchain-4.8.4.371-linux.any.x86_64.tar.gz
9 export PATH=$PATH:$PWD/arm-none-eabi/bin
11 git clone https://github.com/cleanflight/cleanflight.git
12 cd cleanflight
13 TARGET=NAZE make
14 ```
16 This will create cleanflight_NAZE.hex in the obj folder.